home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-24 | 1.0 KB | 60 lines |
- #
- # Library for ftpd clients.(libftp)
- # Copyright by Oleg Orel
- # All rights reserved.
- #
- #This library is desined for free, non-commercial software creation.
- #It is changeable and can be improved. The author would greatly appreciate
- #any advises, new components and patches of the existing programs.
- #Commercial usage is also possible with participation of it's author.
- #
-
-
- LIBDIR = /usr/lib
- INCDIR = /usr/include
- CFLAGS =
-
- OBJS = FtpBye.o \
- FtpType.o \
- FtpClose.o \
- FtpCommand.o \
- FtpConnect.o \
- FtpData.o \
- FtpDebug.o \
- FtpFopen.o \
- FtpFull.o \
- FtpGetHost.o \
- FtpGetMessage.o \
- FtpGetString.o \
- FtpGood.o \
- FtpInitMessage.o \
- FtpLogin.o \
- FtpMessage.o \
- FtpMove.o \
- FtpNumber.o \
- FtpOpenDir.o \
- FtpPort.o \
- FtpPwd.o \
- FtpRead.o \
- FtpRetrTimeout.o \
- FtpStorTimeout.o \
- FtpSendMessage.o \
- FtpWrite.o
-
-
- all: libftp.a
-
- libftp.a: $(OBJS)
- rm -f $@
- ar cq $@ $* $(OBJS)
- ranlib $@
-
-
- install: all
- cp libftp.a $(LIBDIR)
- cp FtpLibrary.h $(INCDIR)
-
-
- clean:
- rm -f libftp.a $(OBJS)
-